A Smarter Way to Learn HTML & CSS: Learn it faster. Remember it longer. by Myers Mark
Author:Myers, Mark [Myers, Mark]
Language: eng
Format: azw3, epub
Tags: programming
Published: 2015-03-10T16:00:00+00:00
You can make table headings span rows, too. The code is…
<th scope="column" rowspan="[number of rows to span]">Whatever</th>
You can divide a table into three sections: a header, body, and footer. This helps screen readers, but doesn’t do anything for sighted users that you can’t do using the code I’ve already taught you. I’ll show you an example. You won’t be tested on it in the exercises.
This is the code.
<table>
<thead>
<tr>
<th></th>
<th>Gym</th>
<th>Exercise Room</th>
<th>Pool</th>
</tr>
</thead>
<tfoot>
<tr>
<th></th>
<th>3 activities</th>
<th>2 activities</th>
<th>1 activity</th>
</tr>
</tfoot>
<tbody>
<tr>
<th scope="row">1 pm</th>
<td>Dodge ball</td>
<td>Spinning</td>
<td rowspan="3">Water polo</td>
</tr>
<tr>
<th scope="row">2 pm</th>
<td>Spinning</td>
<td rowspan="2">Yoga marathon</td>
<tr>
<th scope="row">3 pm</th>
<td rowspan="3">Sack racing</td>
</tr>
</tbody>
</table>
Download
A Smarter Way to Learn HTML & CSS: Learn it faster. Remember it longer. by Myers Mark.epub
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
The Mikado Method by Ola Ellnestam Daniel Brolund(20601)
Hello! Python by Anthony Briggs(19897)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(18203)
Dependency Injection in .NET by Mark Seemann(18105)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(17574)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(17419)
Kotlin in Action by Dmitry Jemerov(17179)
Adobe Camera Raw For Digital Photographers Only by Rob Sheppard(16929)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(16234)
Grails in Action by Glen Smith Peter Ledbrook(15388)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(10391)
Becoming a Dynamics 365 Finance and Supply Chain Solution Architect by Brent Dawson(8052)
Microservices with Go by Alexander Shuiskov(7816)
Practical Design Patterns for Java Developers by Miroslav Wengner(7718)
Test Automation Engineering Handbook by Manikandan Sambamurthy(7667)
Angular Projects - Third Edition by Aristeidis Bampakos(7159)
The Art of Crafting User Stories by The Art of Crafting User Stories(6610)
NetSuite for Consultants - Second Edition by Peter Ries(6531)
Demystifying Cryptography with OpenSSL 3.0 by Alexei Khlebnikov(6304)